home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Games Room
/
The Games Room.iso
/
wingames
/
misc
/
ebpool_w
/
fbinst.bat
next >
Wrap
DOS Batch File
|
1980-06-30
|
444b
|
15 lines
IF "%1" == "" GOTO UsageInstall
IF EXIST %1\System\ctl3dv2.dll GOTO DoneInstall
copy ctl3dv2.dll %1\System
IF NOT EXIST %1\System\ctl3dv2.dll GOTO ErrorInstall
:DoneInstall
del ctl3dv2.dll
goto EndInstall
:ErrorInstall
@ECHO Cannot copy CTL3DV2.DLL to %1\System
@ECHO Check the spelling of the directory.
:UsageInstall
@ECHO Please specify the location of your windows directory.
@ECHO For example: fbinst C:\Windows
:EndInstall